home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amigappc / libsrc / stdio / vscanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  147 b   |  9 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int vscanf(const char *format,va_list args)
  5. {
  6.     fflush(stdout);
  7.     return vfscanf(stdin,format,args);
  8. }
  9.